소스 검색

Cleaned up Enum to set init value to 0

Vincent Gee 11 년 전
부모
커밋
ad4b06f2bc
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      Engine/source/platform/nativeDialogs/msgBox.h

+ 2 - 2
Engine/source/platform/nativeDialogs/msgBox.h

@@ -32,7 +32,7 @@
 
 enum MBButtons
 {
-   MBOk,
+   MBOk = 0,
    MBOkCancel,
    MBRetryCancel,
    MBSaveDontSave,
@@ -41,7 +41,7 @@ enum MBButtons
 
 enum MBIcons
 {
-   MIWarning,
+   MIWarning = 0,
    MIInformation,
    MIQuestion,
    MIStop,