From cb811700e7975e0d813a9139a17819a7b30c8ba5 Mon Sep 17 00:00:00 2001 From: otavepto <153766569+otavepto@users.noreply.github.com> Date: Sun, 5 May 2024 04:31:58 +0300 Subject: [PATCH] spelling mistake in dev note --- ...w different versions of a steam interface are dipatched.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev.notes/how different versions of a steam interface are dipatched.md b/dev.notes/how different versions of a steam interface are dipatched.md index 2289073b..e55aeeb8 100644 --- a/dev.notes/how different versions of a steam interface are dipatched.md +++ b/dev.notes/how different versions of a steam interface are dipatched.md @@ -1,7 +1,7 @@ # How different versions/implementations of 1 interface are maintained and dispatched -This is done by ~~ab~~using the inheritance of C++ an how virtual functions tables (vftables) are implemented by compilers. +This is done by ~~ab~~using the inheritance of C++ and how virtual functions tables (`vftables`) are implemented by compilers. -The point of this article is explaining this somehwat cryptic code in [steam_client.cpp](../dll/steam_client.cpp) +The point of this article is explaining this somewhat cryptic code in [steam_client.cpp](../dll/steam_client.cpp) ```c++ if (strcmp(pchVersion, "SteamNetworking001") == 0) { return (ISteamNetworking *)(void *)(ISteamNetworking001 *)steam_networking_temp;