Differences From Artifact [e32629a48328bd3f]:
- File
test.d
- 2012-07-13 15:02:12 - part of checkin [246bed04b3] on branch trunk - Aborting. (user: kinaba) [annotate]
To Artifact [8775e42f1f972b84]:
- File
test.d
- 2012-07-13 15:36:14 - part of checkin [4027d34fe8] on branch trunk - Changed map letters, with my best respect to the greatest novel "Tobira-no-Soto". (user: kinaba) [annotate]
169 169 if(m.data[y][x]=='R') {
170 170 if(m.dead)
171 171 g.drawText("Я", font, Color(255,0,0), Rect((x-1)*Z, (y-1)*Z, Z, Z));
172 172 else
173 173 g.drawText("R", font, Color(128,128,0), Rect((x-1)*Z, (y-1)*Z, Z, Z));
174 174 }
175 175 if(m.data[y][x]=='L') {
176 - g.drawText("L", font, Color(255,255,0), Rect((x-1)*Z, (y-1)*Z, Z, Z));
176 + g.drawText("扉", font, Color(255,255,0), Rect((x-1)*Z, (y-1)*Z, Z, Z));
177 177 }
178 178 if(m.data[y][x]=='O') {
179 - g.drawText("O", font, Color(255,255,0), Rect((x-1)*Z, (y-1)*Z, Z, Z));
179 + g.drawText("外", font, Color(255,255,0), Rect((x-1)*Z, (y-1)*Z, Z, Z));
180 180 }
181 181 if(m.data[y][x]=='#') {
182 182 g.drawText("#", font, Color(0,0,0), Rect((x-1)*Z, (y-1)*Z, Z, Z));
183 183 }
184 184 if(m.data[y][x]=='.') {
185 185 g.drawText("・", font, Color(128,40,0), Rect((x-1)*Z, (y-1)*Z, Z, Z));
186 186 }