mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fix "Enable chat" in Linux Qt build
This commit is contained in:
parent
be0adc29fa
commit
ce18c23790
1 changed files with 5 additions and 1 deletions
|
@ -184,7 +184,11 @@ private slots:
|
|||
void cheatsAct() { g_Config.bEnableCheats = !g_Config.bEnableCheats; }
|
||||
|
||||
// Chat
|
||||
void chatAct() { NativeMessageReceived("chat screen", ""); }
|
||||
void chatAct() {
|
||||
g_Config.bEnableNetworkChat = true;
|
||||
updateMenus();
|
||||
NativeMessageReceived("chat screen", "");
|
||||
}
|
||||
|
||||
void fullscrAct();
|
||||
void raiseTopMost();
|
||||
|
|
Loading…
Add table
Reference in a new issue