mirror of
https://github.com/cookiengineer/audacity
synced 2026-02-07 04:01:54 +01:00
Make a large number of global variables static so they only have file scope when that is all they need. Part of a patch by Campbell Barton
This commit is contained in:
@@ -44,9 +44,9 @@
|
||||
#include "Prefs.h"
|
||||
#include "Dither.h"
|
||||
|
||||
Dither::DitherType gLowQualityDither = Dither::none;
|
||||
Dither::DitherType gHighQualityDither = Dither::none;
|
||||
Dither gDitherAlgorithm;
|
||||
static Dither::DitherType gLowQualityDither = Dither::none;
|
||||
static Dither::DitherType gHighQualityDither = Dither::none;
|
||||
static Dither gDitherAlgorithm;
|
||||
|
||||
void InitDitherers()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user