summaryrefslogtreecommitdiff
path: root/src/main/kotlin/de/romjaki/pluggabledino/states/GameState.kt
diff options
context:
space:
mode:
authorRoman Gräf <roman.graef@gmail.com>2018-06-09 15:17:36 +0200
committerGitHub <noreply@github.com>2018-06-09 15:17:36 +0200
commite12e295df1c52735dce4147ac4ac317f6587a58a (patch)
treebbd701365c8bda1cf3a87c0ddb189328db3d3e2f /src/main/kotlin/de/romjaki/pluggabledino/states/GameState.kt
parent04dbb7935d70f41aca331f5e77949bd1ff6cabf8 (diff)
parent45acd8e70ba3ad894450cacfa4ec1cb671399b9a (diff)
downloadpluggabledino-e12e295df1c52735dce4147ac4ac317f6587a58a.tar.gz
pluggabledino-e12e295df1c52735dce4147ac4ac317f6587a58a.tar.bz2
pluggabledino-e12e295df1c52735dce4147ac4ac317f6587a58a.zip
Merge pull request #3 from romangraef/iki
Lost State Backgroud => light gray
Diffstat (limited to 'src/main/kotlin/de/romjaki/pluggabledino/states/GameState.kt')
-rw-r--r--src/main/kotlin/de/romjaki/pluggabledino/states/GameState.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/de/romjaki/pluggabledino/states/GameState.kt b/src/main/kotlin/de/romjaki/pluggabledino/states/GameState.kt
index 0d4fff0..3f3a01e 100644
--- a/src/main/kotlin/de/romjaki/pluggabledino/states/GameState.kt
+++ b/src/main/kotlin/de/romjaki/pluggabledino/states/GameState.kt
@@ -36,7 +36,7 @@ class GameState : BasicGameState() {
override fun render(container: GameContainer?, game: StateBasedGame?, g: Graphics?) {
g!!
- g.background = Color.lightGray
+ g.background = Color.white
if (world.hurt) {
g.background = Color.red
}