From 4a136205bce0cdf7632cdcc5907c372311518047 Mon Sep 17 00:00:00 2001 From: Themaister Date: Tue, 4 Sep 2012 23:40:57 +0200 Subject: [PATCH] Add clarification on retro_get_system_av_info(). --- libretro.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libretro.h b/libretro.h index 01b562024a..02d7c80f34 100755 --- a/libretro.h +++ b/libretro.h @@ -479,6 +479,8 @@ void retro_get_system_info(struct retro_system_info *info); // Gets information about system audio/video timings and geometry. // Can be called only after retro_load_game() has successfully completed. +// NOTE: The implementation of this function might not initialize every variable if needed. +// E.g. geom.aspect_ratio might not be initialized if core doesn't desire a particular aspect ratio. void retro_get_system_av_info(struct retro_system_av_info *info); // Sets device to be used for player 'port'.