From 6b5ad5373360b32446a8dbdc834cdf57c024183b Mon Sep 17 00:00:00 2001 From: Marcus Huderle Date: Thu, 19 Jul 2018 22:44:55 -0500 Subject: [PATCH] Rename Block to Metatile --- mainwindow.ui | 4 ++-- map.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mainwindow.ui b/mainwindow.ui index 193d98e1..f3f19222 100755 --- a/mainwindow.ui +++ b/mainwindow.ui @@ -466,7 +466,7 @@ - 1 + 0 @@ -476,7 +476,7 @@ - Blocks + Metatiles diff --git a/map.cpp b/map.cpp index 5206da76..f114884f 100755 --- a/map.cpp +++ b/map.cpp @@ -620,7 +620,7 @@ void Map::clearHoveredTile() { void Map::hoveredMetatileChanged(int blockIndex) { int tile = getSelectedBlockIndex(blockIndex); - emit statusBarMessage(QString("Block: 0x%1") + emit statusBarMessage(QString("Metatile: 0x%1") .arg(QString("%1").arg(tile, 3, 16, QChar('0')).toUpper())); }