mirror of
https://github.com/microtherion/VocalEasel.git
synced 2024-12-22 03:04:00 +00:00
25 lines
359 B
C
25 lines
359 B
C
|
//
|
||
|
// File: VLDebugFlags.h - Runtime debugging flags
|
||
|
//
|
||
|
// Author(s):
|
||
|
//
|
||
|
// (MN) Matthias Neeracher
|
||
|
//
|
||
|
// Copyright © 2007 Matthias Neeracher
|
||
|
//
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
class VLDebugFlags {
|
||
|
public:
|
||
|
static void Update();
|
||
|
static bool ShowDebugMenu() { return sFlags & 1; }
|
||
|
private:
|
||
|
static uint32_t sFlags;
|
||
|
};
|
||
|
|
||
|
// Local Variables:
|
||
|
// mode:C++
|
||
|
// End:
|
||
|
|