Fixed log tag error

This commit is contained in:
Collin Smith 2020-01-04 02:10:56 -08:00
parent a1bca12d62
commit dc1aff5b4a

View File

@ -21,7 +21,7 @@ public enum Location {
case 5: return UNK5;
case 6: return SOCKET;
default:
Gdx.app.error("LowQuality", "Unknown location: " + i);
Gdx.app.error("Location", "Unknown location: " + i);
return null;
}
}