OSDN Git Service

[Refactor] #2159 typedef struct宣言を全てstruct宣言に差し替えた
[hengbandforosx/hengbandosx.git] / src / birth / birth-select-realm.cpp
index ff69ee9..e2c8cbb 100644 (file)
@@ -15,7 +15,7 @@
 
 static const byte REALM_SELECT_CANCEL = 255;
 
-typedef struct birth_realm_type {
+struct birth_realm_type {
     int cs;
     int n;
     char p2;
@@ -25,7 +25,7 @@ typedef struct birth_realm_type {
     char cur[80];
     int k;
     int os;
-} birth_realm_type;
+};
 
 static byte count_realm_selection(const uint32_t choices, int *count)
 {