Skip to content

Commit

Permalink
[ gradle ] Bug fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
ice1000 committed Dec 19, 2017
1 parent 8488918 commit 3fb4379
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions frice/src/main/kotlin/org/frice/Game.kt
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,13 @@ open class Game @JvmOverloads constructor(layerCount: Int = 1) : AppCompatActivi
}

override fun dialogConfirmYesNo(msg: String, title: String) =
TODO() // JOptionPane.showConfirmDialog(this, msg, title, YES_NO_OPTION) == YES_OPTION
false // JOptionPane.showConfirmDialog(this, msg, title, YES_NO_OPTION) == YES_OPTION

override fun dialogShow(msg: String, title: String) =
TODO() // JOptionPane.showMessageDialog(this, msg, title, OK_OPTION)
override fun dialogShow(msg: String, title: String) {}
// JOptionPane.showMessageDialog(this, msg, title, OK_OPTION)

override fun dialogInput(msg: String, title: String): String =
TODO() // JOptionPane.showInputDialog(this, msg, title)
"TODO" // JOptionPane.showInputDialog(this, msg, title)

override var debug = true
override var autoGC = true
Expand Down

0 comments on commit 3fb4379

Please sign in to comment.