Update JavaBridge.h

Add space after single line comments and add newline
This commit is contained in:
Derek "Turtle" Roe 2021-03-13 04:15:04 -06:00
parent c1f914a974
commit dfe0957988
1 changed files with 4 additions and 4 deletions

View File

@ -11,18 +11,18 @@ class JavaBridge :
public:
JavaBridge(JavaVM* vm);
//Render window functions
// Render window functions
void GfxThreadInit();
void GfxThreadDone();
void SwapWindow();
//Rom List
// ROM List
void RomListReset(void);
void RomListAddItem(const char * FullFileName, const char * FileName, const char * GoodName, uint32_t TextColor);
void RomListLoaded(void);
void RecentRomsUpdated(void);
//Notification
// Notification
void DisplayError(const char * Message);
void DisplayMessage(const char * Message, int DisplayTime);
void DisplayMessage2(const char * Message);
@ -39,4 +39,4 @@ private:
jclass m_NotifierClass;
};
#endif
#endif