Fix house data corruption, progress to first screen

This commit is contained in:
elasota
2019-12-24 18:39:30 -05:00
parent 3111609536
commit 5cb9b85396
30 changed files with 896 additions and 113 deletions

View File

@@ -42,7 +42,8 @@ namespace PortabilityLayer
switch (pixelFormat)
{
case GpPixelFormats::k8BitCustom:
case GpPixelFormats::k8BitStandard:
case GpPixelFormats::k8BitStandard:
case GpPixelFormats::kBW1:
rowByteCount = width;
break;
case GpPixelFormats::kRGB555:
@@ -53,7 +54,7 @@ namespace PortabilityLayer
break;
case GpPixelFormats::kRGB32:
rowByteCount = width * 4;
break;
break;
default:
assert(false);
return 0;