[nostalgia] Enable and fix -Wextra warnings

This commit is contained in:
2019-03-30 17:30:56 -05:00
parent 5afe78d015
commit 23b662c2aa
9 changed files with 22 additions and 24 deletions

View File

@@ -10,22 +10,22 @@
namespace nostalgia::core {
ox::Error initGfx(Context *ctx) {
ox::Error initGfx(Context*) {
return 1;
}
ox::Error initConsole(Context *ctx) {
ox::Error initConsole(Context*) {
return 1;
}
ox::Error loadTileSheet(Context *ctx, InodeId_t inode) {
ox::Error loadTileSheet(Context*, InodeId_t) {
return 1;
}
void puts(Context *ctx, int loc, const char *str) {
void puts(Context*, int, const char*) {
}
void setTile(Context *ctx, int layer, int column, int row, uint8_t tile) {
void setTile(Context*, int, int, int, uint8_t) {
}
}