From: Mikko Rasa Date: Tue, 3 Jan 2023 15:42:11 +0000 (+0200) Subject: Make Console references static instead of extern X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;ds=sidebyside;h=c77c9fc85ca6b9fc111b1a3d8a84c3903e3dd646;hp=c77c9fc85ca6b9fc111b1a3d8a84c3903e3dd646;p=libs%2Fcore.git Make Console references static instead of extern This avoids unresolved external errors on MSVC. It's not ideal because every translation unit will have its own copy of the references and initialize them separately, but the overhead for calling the instance accessor function is not too large. ---