mirror of
https://github.com/libretro/libretro-chailove.git
synced 2025-02-20 00:11:06 +00:00
10 lines
167 B
ChaiScript
10 lines
167 B
ChaiScript
/**
|
|
* ChaiLove callback; Configure the application.
|
|
*/
|
|
def conf(t) {
|
|
t.window.width = 640
|
|
t.window.height = 480
|
|
//t.modules.sound = false
|
|
t.console = true
|
|
}
|