1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-05 07:45:59 +02:00

Console fixes

This commit is contained in:
Brian Fiete 2024-07-23 11:51:47 +02:00
parent ac718dde19
commit 9209511cd7
3 changed files with 10 additions and 1 deletions

View file

@ -1008,6 +1008,8 @@ class BeefConConsoleProvider : ConsoleProvider
public override Cell GetCell(int col, int row)
{
if (mCells == null)
return default;
return mCells[row * mWidth + col];
}