Skip to content

Commit

Permalink
Fix camera typo, v8.2.1 FINAL
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanKell committed Oct 22, 2014
1 parent 9968cb7 commit 9af7e7f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
Binary file modified RealSolarSystem/Plugins/RealSolarSystem.dll
Binary file not shown.
4 changes: 4 additions & 0 deletions RealSolarSystem/Readme_RSS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ Pluto is represented by Vall

===========================
Changelog
v8.2.1
*Fix typo in camera clipping that made the ground flicker (at least it wasn't another loader bug).
*Correct version this time in assembly info.

v8.2
*Finally fixed (I trust) all remaining issues from the loader rewrite
*Borrowed some PQSMod values from 6.4x Kerbin (kudos to Raptor831 et al)
Expand Down
2 changes: 1 addition & 1 deletion RealSolarSystem/RealSolarSystem.version
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"VERSION": {
"MAJOR": 8,
"MINOR": 2,
"PATCH": 0
"PATCH": 1
},
"KSP_VERSION": {
"MAJOR": 0,
Expand Down
4 changes: 2 additions & 2 deletions Source/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.8.1.1")]
[assembly: AssemblyFileVersion("0.8.1.1")]
[assembly: AssemblyVersion("0.8.2.1")]
[assembly: AssemblyFileVersion("0.8.2.1")]
2 changes: 1 addition & 1 deletion Source/Watchdogs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public void Update()
else
{
float farClip = -1;
float nearClip = 01;
float nearClip = -1;
if (cam.name.Equals("Camera 00"))
{
RSSSettings.TryGetValue("cam00FarClip", ref farClip);
Expand Down

0 comments on commit 9af7e7f

Please sign in to comment.