2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-08-31 14:45:14 +00:00

Divided song volume and video volume, video volume control implemented.

This commit is contained in:
John Preston
2016-07-12 17:11:59 +03:00
parent 034657dd2c
commit 8da39356dc
15 changed files with 96 additions and 26 deletions

View File

@@ -538,6 +538,9 @@ struct Data {
int32 DebugLoggingFlags = 0;
float64 SongVolume = 0.9;
float64 VideoVolume = 0.9;
// config
int32 ChatSizeMax = 200;
int32 MegagroupSizeMax = 1000;
@@ -606,6 +609,9 @@ DefineVar(Global, bool, ScreenIsLocked);
DefineVar(Global, int32, DebugLoggingFlags);
DefineVar(Global, float64, SongVolume);
DefineVar(Global, float64, VideoVolume);
// config
DefineVar(Global, int32, ChatSizeMax);
DefineVar(Global, int32, MegagroupSizeMax);