Skip to content
Snippets Groups Projects
Commit 7b9672e4 authored by DamianKomdeur's avatar DamianKomdeur
Browse files

Text size change

parent fb8003ee
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ namespace PuzzlePlayer_Namespace
{
private static int boardLength;
private static int rootBoardLength;
public Sudoku(int boardSize = 9)
public Sudoku(int boardSize = 16)
{
boardState = GetClearBoard(boardSize, boardSize);
lastGeneratedBoard = GetClearBoard(boardSize, boardSize);
......@@ -45,7 +45,7 @@ namespace PuzzlePlayer_Namespace
{
gr.DrawString(
(boardState[i, j]).ToString(),
new Font("Arial", 42),
new Font("Arial", tilesize.Width / 2),
Brushes.Black,
(float)(r.X + i * tilesize.Width + tilesize.Width / 4),
(float)(r.Y + j * tilesize.Height + tilesize.Height / 4)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment