Hit me again.
This is it:
Microsoft Visual C++ Runtime Library
Runtime error!!
Propgram: C:\ Program files (x86)\s...
R6025
-pure virtual function call
And this is WHAT it is;
Description of the R6025 run-time error in Visual C++
Collapse imageCAUSE
This error occurs when your application indirectly calls a pure virtual member function in a context where a call to the function is not valid. In most cases, the compiler detects this and reports the error when building the application. But depending on how your code is written, sometimes the problem is detected only at run-time.
The error occurs when you indirectly call a pure virtual function within the context of a call to the constructor or destructor of an abstract base class. This is illustrated in the sample code below, along with some more description.
SO, this is a programming problem, nothing to do with anyones computer or the internet/network etc..etc...
It is completely illogical that SE has ignored this problem for this long.
The faulting program is detailed in admin logs;
Faulting application name: ffxiv.exe, version: 1.0.0.0, time stamp: 0x522f769d
Faulting module name: ffxiv.exe, version: 1.0.0.0, time stamp: 0x522f769d
Exception code: 0x40000015
Fault offset: 0x0085ef81
Faulting process id: 0x4b14
Faulting application start time: 0x01ceb9868375a771
Faulting application path: C:\Program Files (x86)\SquareEnix\FINAL FANTASY XIV - A Realm Reborn\game\ffxiv.exe
Faulting module path: C:\Program Files (x86)\SquareEnix\FINAL FANTASY XIV - A Realm Reborn\game\ffxiv.exe
Report Id: 49cafe73-2581-11e3-b83a-0002762e4d1f
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
- <System>
<Provider Name="Application Error" />
<EventID Qualifiers="0">1000</EventID>
<Level>2</Level>
<Task>100</Task>
<Keywords>0x80000000000000</Keywords>
<TimeCreated SystemTime="2013-09-25T01:24:58.000000000Z" />
<EventRecordID>90805</EventRecordID>
<Channel>Application</Channel>
<Computer>deleted</Computer>
<Security />
</System>
- <EventData>
<Data>ffxiv.exe</Data>
<Data>1.0.0.0</Data>
<Data>522f769d</Data>
<Data>ffxiv.exe</Data>
<Data>1.0.0.0</Data>
<Data>522f769d</Data>
<Data>40000015</Data>
<Data>0085ef81</Data>
<Data>4b14</Data>
<Data>01ceb9868375a771</Data>
<Data>C:\Program Files (x86)\SquareEnix\FINAL FANTASY XIV - A Realm Reborn\game\ffxiv.exe</Data>
<Data>C:\Program Files (x86)\SquareEnix\FINAL FANTASY XIV - A Realm Reborn\game\ffxiv.exe</Data>
<Data>49cafe73-2581-11e3-b83a-0002762e4d1f</Data>
</EventData>
</Event>
So, this cant be cleared up at the user end. Its only done by patching the offending program code.
 
		
		 
			 
			
 
			 Reply With Quote
  Reply With Quote 
 
			


