fix typo / bad error message

This commit is contained in:
garak 2019-09-08 20:26:39 -04:00
parent 3cbba869ae
commit b9ba7777d3

View file

@ -816,8 +816,8 @@ void RegionMapEditor::importTileImage(bool city) {
int maxAllowedTiles = 0x100; int maxAllowedTiles = 0x100;
if (totalTiles > maxAllowedTiles) { if (totalTiles > maxAllowedTiles) {
QString errorMessage = QString("The total number of tiles in the provided image (%1) is greater than the allowed number (%2).") QString errorMessage = QString("The total number of tiles in the provided image (%1) is greater than the allowed number (%2).")
.arg(maxAllowedTiles) .arg(totalTiles)
.arg(totalTiles); .arg(maxAllowedTiles);
logError(errorMessage); logError(errorMessage);
QMessageBox msgBox(this); QMessageBox msgBox(this);
msgBox.setText("Failed to import tiles."); msgBox.setText("Failed to import tiles.");