change default size to be more accurate

This commit is contained in:
Jill 2023-06-01 20:40:52 +03:00
parent bb4175d279
commit 5000e08dd6
Signed by: oat
GPG Key ID: 33489AA58A955108
2 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ module Funfriend::ConfigMan
DEFAULT_CONFIG = {
"window" => {
"funfriend_size" => 64.as(ConfigValue)
"funfriend_size" => 75.as(ConfigValue)
},
"sound" => {
"volume" => 0.2.as(ConfigValue)

View File

@ -153,11 +153,11 @@ module Funfriend
self.x != other.x || self.y != other.y
end
def to_s
"(#{x}, #{y})"
def to_s(io : IO)
io << "(#{x}, #{y})"
end
def inspect
"(x: #{x.inspect}, y: #{y.inspect})"
def inspect(io : IO)
io << "(x: #{x.inspect}, y: #{y.inspect})"
end
def self.zero