Poker Night: All my stats are gone!

edited April 2013 in Game Support
So after a busy day I load up Poker Night, and it starts up in a window for some reason (I usually play full-screen). No biggie I think, sometimes games do that, I fix up the Options and go play.

I notice I have the option to "Continue Tournament" (I didn't even know the game saved tournaments) even though I finished my last tournament, but I decide to try it out anyways. The game seems to load up the last game right when I lost, with me having no money:

th_pokernight4.jpg

Yet when I start the hand I suddenly get a bunch of money to play with. :confused: Oh well, whatever, I continue the game and beat the Heavy.

Then I noticed... all my game stats are gone! :eek: Unlocks, items, everything! There's only stats for the hands I played since I loaded the game. Although the achievements are intact, you can see I had gotten the Strong Bad glasses:

th_pokernight5.jpg

Luckily I hadn't advanced much in the game so I'm not too bothered, but still, what the hell happened to all my cool stuff?? :(
«1

Comments

  • edited November 2010
    Same problem here: Game started in windowed mode today and had let me finish a tournament (don't know if this is actually related, I'm not sure I finished the last one yesterday).

    Now all the stats are gone, as well as the unlocked items, decks and tables. Also all the options in setup were set back to the original state.
  • DjNDBDjNDB Moderator
    edited November 2010
    That happened to me too.
    I wrote a little quick+dirty python script that zips the savegame and prefs.prop every 60 seconds.
    Let's see how that works out.
  • DjNDBDjNDB Moderator
    edited November 2010
    In case anyone has a use for the python script:
    import shutil, time, threading
    # This script is just a quick+dirty way to have a regular zipped
    # backup of a folder in a certain interval, until you stop it.
    #
    # For very pessimistic data safety reasons a new archive is created each time.
    # Be aware that this will take a lot of space, if you chose a short interval.
    # You will also want to manually delete old backups every now and then.
    #
    # Adapt "base_dir" and "backup_interval" to match your environment/preference
    
    # Directory to backup
    base_dir="C:\\Users\\Username\\Documents\\Telltale Games\\Poker Night at the Inventory"
    
    # Backup interval in seconds
    backup_interval=300
    
    def createArchive():
        # Use current time in seconds as filename suffix
        base_name="PNATI_Backup-"+str(time.mktime(time.gmtime())) 
        shutil.make_archive(base_name,'zip',base_dir)
        print "Created Backup: " + base_name   
        global timer
        # Create a backup archive 
        timer = threading.Timer(backup_interval, createArchive)
        timer.start()    
    
    createArchive() 
    raw_input("Press any key to stop\n");
    timer.cancel()
    
    

    I can't decide which backup interval is appropriate. 60 seconds should catch most of the Poker progress, but will create a lot of archives.
    Depending on how often stats are lost it might be reasonable to just make a backup every ten or more minutes or even just every day. I set it to 5 minutes in the posted version.

    The script was just a spontaneous mini project to get a little more python experience. I am pretty new to the language, so i just use it every now and then for fun and profit.
  • VainamoinenVainamoinen Moderator
    edited December 2010
    Shoooooot. EXACTLY this happened to me last night. If I had any real interest in poker or had bought this game for any other reason than to get the 25% off everything deal, I'd be really p****d right now. 24.000 on the plus side, all TF2 items and nearly all unlocks. I was so happy to have the TF2 items because I started to get annoyed when these guys randomly put their stuff on the table. ;)

    The patch hasn't addressed that problem, correct?
  • edited December 2010
    Considering it happened to me again one game after I installed the new version, no.

    Heads up for whoever has his data erased but had a backup of it, don't try to replace it inmediately or the backup will get screwed up too, play one tourney or something before that >__>
  • edited December 2010
    I've lost 60,000 on the plus, two tables, three decks. Now the character items... I don't have them in the poker game, but I still have them as achievements for the poker game, and in TF2.
    So I guess i haven't lost much. But it's just annoying to have to start from the beginning....
  • edited December 2010
    I just lost all my stats as well. What the heck is going on?

    I've got the game installed on both Steam and the Telltale version, they seem to be using the same savefile on my machine.
    I started the Steam version yesterday and it crashed repeatedly. Rebooted, started it again and it worked, but all my stats are erased. I've still got all the steam achievements, though.
  • edited December 2010
    I've noticed that the pnati_save.save file grows every time you unlock something new.
    My file is still there and it's the right size (i.e. bigger than a new install), so it seems as if the file is just being ignored by the game now. Maybe because it's been corrupted?
  • edited December 2010
    Are you guys making sure to exit through the menu? Also could you send me your dxdiags?
  • edited December 2010
    Amy Lukima wrote: »
    Are you guys making sure to exit through the menu? Also could you send me your dxdiags?

    I've managed to reproduce the error.

    VLC video player tends to hog my SPDIF output and mute all other applications when it's open. Having VLC running makes celebritypoker.exe crash on startup, maybe they're fighting for the sound output or something, I don't know.

    If Poker doesn't start up, that's fine, but it's certainly not supposed to corrupt my savegame if it can't start.

    After Poker crashed on startup, I closed VLC and started Poker again. All graphics settings are back to default, but it still remembers that I'm in the middle of a tournament and I can click the 'continue tournament' button in the menu.
    It continues the tournament where I left off, however, all my stats are reset and all my unlocks are gone.

    I've attached the broken savegame in a zip file. Hopefully you can figure out what goes wrong during startup.
  • edited December 2010
    All graphics settings are back to default, but it still remembers that I'm in the middle of a tournament and I can click the 'continue tournament' button in the menu.
    It continues the tournament where I left off, however, all my stats are reset and all my unlocks are gone.

    The same thing happened to me, except I didn't have VLC running. I got a random crash at Poker Night startup, though. :(
  • DjNDBDjNDB Moderator
    edited December 2010
    VLC video player tends to hog my SPDIF output and mute all other applications when it's open. Having VLC running makes celebritypoker.exe crash on startup, maybe they're fighting for the sound output or something, I don't know.


    Good catch. I don't remember how i lost my stats back then and what was running, but i can definitely reproduce this too.
    It doesn't have to be VLC. If I play a video which uses s/pdif passthrough and start poker night, the FMOD module crashes and the prefs.prop gets lost. I use ffdshow tryouts for videos with a directshow media player.
    VLC and ffdshow are both based on FFMPEG, but i think the actual issue is blocking the sound interface like that in general.
    It is possible, that FMOD doesn't handle seeing the blocked sound device properly, but to confirm that would need some tests or debugging, which i don't have time for at the moment.

    I attached Backups of the settings and save game before and after the crash. The file with the later unix time stamp in the name is the one after the crash.

    Also here's a crash log:
    <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="2010-12-07T21:44:00.000000000Z" />
        <EventRecordID>7735</EventRecordID>
        <Channel>Application</Channel>
        <Computer>Andy-PC</Computer>
        <Security />
      </System>
      <EventData>
        <Data>CelebrityPoker.exe</Data>
        <Data>2010.12.2.50602</Data>
        <Data>4cf7eaf7</Data>
        <Data>fmodex.dll</Data>
        <Data>0.4.30.3</Data>
        <Data>4be351f9</Data>
        <Data>c0000005</Data>
        <Data>00072658</Data>
        <Data>17b4</Data>
        <Data>01cb9657c9f3621c</Data>
        <Data>C:\Program Files (x86)\Telltale Games\Poker Night\Poker Night at the Inventory\CelebrityPoker.exe</Data>
        <Data>C:\Program Files (x86)\Telltale Games\Poker Night\Poker Night at the Inventory\fmodex.dll</Data>
        <Data>195ad21a-024b-11e0-804e-0015833e3a6d</Data>
      </EventData>
    </Event>
    

    And a dxdiag log:
    [code]
    System Information
    Time of this report: 12/7/2010, 23:06:20
    Machine name: ANDY-PC
    Operating System: Windows 7 Professional 64-bit (6.1, Build 7600) (7600.win7_gdr.100618-1621)
    Language: German (Regional Setting: German)
    System Manufacturer: Gigabyte Technology Co., Ltd.
    System Model: GA-MA78GM-S2H
    BIOS: Award Modular BIOS v6.00PG
    Processor: AMD Phenom(tm) II X4 940 Processor (4 CPUs), ~3.0GHz
    Memory: 8192MB RAM
    Available OS Memory: 8190MB RAM
    Page File: 2889MB used, 13487MB available
    Windows Dir: C:\Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: 96 DPI (100 percent)
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7600.16385 64bit Unicode

    DxDiag Notes
    Display Tab 1: No problems found.
    Sound Tab 1: No problems found.
    Input Tab: No problems found.

    DirectX Debug Levels
    Direct3D: 0/4 (retail)
    DirectDraw: 0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay: 0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow: 0/6 (retail)

    Display Devices
    Card name: ATI Radeon HD 4800 Series
    Manufacturer: ATI Technologies Inc.
    Chip type: ATI display adapter (0x9442)
    DAC type: Internal DAC(400MHz)
    Device Key: Enum\PCI\VEN_1002&DEV_9442&SUBSYS_21C71458&REV_00
    Display Memory: 4081 MB
    Dedicated Memory: 1014 MB
    Shared Memory: 3067 MB
    Current Mode: 1920 x 1200 (32 bit) (59Hz)
    Monitor Name: Dell 2407WFP (Digital)
    Monitor Model: DELL 2407WFP
    Monitor Id: DELA017
    Native Mode: 1920 x 1200(p) (59.950Hz)
    Output Type: DVI
    Driver Name: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Driver File Version: 8.17.0010.1052 (English)
    Driver Version: 8.791.0.0
    DDI Version: 10.1
    Driver Model: WDDM 1.1
    Driver Attributes: Final Retail
    Driver Date/Size: 10/27/2010 03:54:22, 645120 bytes
    WHQL Logo'd: Yes
    WHQL Date Stamp:
    Device Identifier: {D7B71EE2-D702-11CF-F473-CD01BEC2C535}
    Vendor ID: 0x1002
    Device ID: 0x9442
    SubSys ID: 0x21C71458
    Revision ID: 0x0000
    Driver Strong Name: oem80.inf:ATI.Mfg.NTamd64.6.1:ati2mtag_RV7X:8.791.0.0:pci\ven_1002&dev_9442
    Rank Of Driver: 00E62001
    Video Accel: ModeMPEG2_A ModeMPEG2_C
    Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    D3D9 Overlay: Not Supported
    DXVA-HD: Not Supported
    DDraw Status: Enabled
    D3D Status: Enabled
    AGP Status: Enabled

    Sound Devices
    Description: Realtek Digital Output (Realtek High Definition Audio)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
    Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0885&SUBSYS_1458A002&REV_1001
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: RTKVHD64.sys
    Driver Version: 6.00.0001.6235 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: Yes
    Date and Size: 11/2/2010 19:33:10, 2536040 bytes
    Other Files:
    Driver Provider: Realtek Semiconductor Corp.
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Sound Capture Devices
    Description: Realtek Digital Input (Realtek High Definition Audio)
    Default Sound Capture: Yes
    Default Voice Capture: Yes
    Driver Name: RTKVHD64.sys
    Driver Version: 6.00.0001.6235 (English)
    Driver Attributes: Final Retail
    Date and Size: 11/2/2010 19:33:10, 2536040 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    DirectInput Devices
    Device Name: Maus
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: Tastatur
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: HID-konformes Benutzersteuergerät
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046A, 0x0023
    FF Driver: n/a

    Device Name: HID-konformes Benutzersteuergerät
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046A, 0x0023
    FF Driver: n/a

    Device Name: HID-konformes Gerät
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046A, 0x0023
    FF Driver: n/a

    Device Name: HID-konformes Gerät
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046A, 0x0023
    FF Driver: n/a

    Device Name: UnKnown
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x057E, 0x0306
    FF Driver: n/a

    Poll w/ Interrupt: No

    USB Devices
    + USB-Root-Hub
    | Vendor/Product ID: 0x1002, 0x4398
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    | Driver: usbhub.sys, 7/14/2009 01:07:09, 343040 bytes
    | Driver: usbd.sys, 7/14/2009 01:06:23, 7936 bytes

    Gameport Devices

    PS/2 Devices
    + HID-Tastatur
    | Vendor/Product ID: 0x046A, 0x0023
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 7/14/2009 01:00:20, 33280 bytes
    | Driver: kbdclass.sys, 7/14/2009 02:48:04, 50768 bytes
    |
    + HID-Tastatur
    | Vendor/Product ID: 0x046A, 0x0023
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 7/14/2009 01:00:20, 33280 bytes
    | Driver: kbdclass.sys, 7/14/2009 02:48:04, 50768 bytes
    |
    + Terminalserver-Tastaturtreiber
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: i8042prt.sys, 7/14/2009 00:19:57, 105472 bytes
    | Driver: kbdclass.sys, 7/14/2009 02:48:04, 50768 bytes
    |
    + HID-konforme Maus
    | Vendor/Product ID: 0x046D, 0xC046
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouhid.sys, 7/14/2009 01:00:20, 31232 bytes
    | Driver: mouclass.sys, 7/14/2009 02:48:27, 49216 bytes
    |
    + Terminalserver-Maustreiber
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 7/14/2009 02:45:55, 62544 bytes
    | Driver: sermouse.sys, 7/14/2009 01:00:20, 26624 bytes
    | Driver: mouclass.sys, 7/14/2009 02:48:27, 49216 bytes

    Disk & DVD/CD-ROM Drives
    Drive: C:
    Free Space: 28.4 GB
    Total Space: 100.0 GB
    File System: NTFS
    Model: WDC WD10 EACS-00D6B1 SATA Disk Device

    Drive: D:
    Free Space: 149.1 GB
    Total Space: 853.9 GB
    File System: NTFS
    Model: WDC WD10 EACS-00D6B1 SATA Disk Device

    Drive: E:
    Free Space: 35.5 GB
    Total Space: 953.9 GB
    File System: NTFS
    Model: n/a

    Drive: F:
    Model: LITE-ON DVDRW LH-20A1S SATA CdRom Device
    Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7600.16385 (German), 7/14/2009 00:19:54, 147456 bytes

    System Devices
    Name: Realtek PCIe GBE Family Controller
    Device ID: PCI\VEN_10EC&DEV_8168&SUBSYS_E0001458&REV_02\4&1B7160FD&0&0050
    Driver: n/a

    Name: PCI Standard-Host-CPU-Brücke
    Device ID: PCI\VEN_1022&DEV_1200&SUBSYS_00000000&REV_00\3&18D45AA6&0&C0
    Driver: n/a

    Name: Standard OpenHCD USB-Hostcontroller
    Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_50041458&REV_00\3&18D45AA6&0&98
    Driver: C:\Windows\system32\drivers\usbohci.sys, 6.01.7600.16385 (English), 7/14/2009 01:06:30, 25600 bytes
    Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:31, 324608 bytes
    Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (German), 7/14/2009 01:07:09, 343040 bytes

    Name: PCI Standard-PCI-zu-PCI-Brücke
    Device ID: PCI\VEN_1022&DEV_9609&SUBSYS_96001022&REV_00\3&18D45AA6&0&50
    Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (German), 7/14/2009 02:45:45, 183872 bytes

    Name: High Definition Audio-Controller
    Device ID: PCI\VEN_1002&DEV_AA30&SUBSYS_AA301458&REV_00\4&25B761A6&0&0110
    Driver: C:\Windows\system32\DRIVERS\hdaudbus.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:13, 122368 bytes

    Name: Standard OpenHCD USB-Hostcontroller
    Device ID: PCI\VEN_1002&DEV_4397&SUBSYS_50041458&REV_00\3&18D45AA6&0&90
    Driver: C:\Windows\system32\drivers\usbohci.sys, 6.01.7600.16385 (English), 7/14/2009 01:06:30, 25600 bytes
    Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (German), 7/14/2009 01:06:31, 324608 bytes
    Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (German), 7/14/2009 01:07:09, 343040 bytes

    Name: PCI Standard-PCI-zu-PCI-Brücke
    Device ID: PCI\VEN_1022&DEV_9603&SUBSYS_96001022&REV_00\3&18D45AA6&0&10
    Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (German), 7/14/2009 02:45:45, 183872 bytes

    Name: ATI Radeon HD 4800 Series
    Device ID: PCI\VEN_1002&DEV_9442&SUBSYS_21C71458&REV_00\4&25B761A6&0&0010
    Driver: C:\Windows\system32\DRIVERS\atikmdag.sys, 8.01.0001.1094 (English), 10/27/2010 05:00:14, 8012288 bytes
    Driver: C:\Windows\system32\DRIVERS\ati2erec.dll, 1.00.0000.0019 (English), 10/27/2010 03:12:54, 53248 bytes
    Driver: C:\Windows\system32\DRIVERS\atikmpag.sys, 8.14.0001.6160 (English), 10/27/2010 03:14:22, 287232 bytes
    Driver: C:\Windows\system32\atiumd64.dll, 8.14.0010.0791 (English), 10/27/2010 03:22:02, 5218304 bytes
    Driver: C:\Windows\system32\atiumd6a.dll, 8.14.0010.0283 (English), 10/27/2010 02:57:02, 3221504 bytes
    Driver: C:\Windows\system32\atitmm64.dll, 6.14.0011.0023 (English), 10/27/2010 03:50:28, 120320 bytes
    Driver: C:\Windows\system32\atiicdxx.dat, 9/22/2010 19:27:52, 223990 bytes
    Driver: C:\Windows\system32\amdpcom64.dll, 8.14.0010.0023 (English), 10/27/2010 02:37:16, 53760 bytes
    Driver: C:\Windows\system32\atimpc64.dll, 8.14.0010.0023 (English), 10/27/2010 02:37:16, 53760 bytes
    Driver: C:\Windows\system32\atiadlxx.dll, 6.14.0010.1054 (English), 10/27/2010 03:14:56, 349184 bytes
    Driver: C:\Windows\system32\atiumd6a.cap, 10/27/2010 02:54:52, 653056 bytes
    Driver: C:\Windows\system32\atimuixx.dll, 6.14.0010.1001 (English), 10/27/2010 03:49:52, 16384 bytes
    Driver: C:\Windows\system32\atiapfxx.exe, 6.14.0010.1001 (English), 10/27/2010 03:55:30, 143360 bytes
    Driver: C:\Windows\system32\atiapfxx.blb, 10/27/2010 03:55:34, 99504 bytes
    Driver: C:\Windows\system32\atiesrxx.exe, 6.14.0011.1077 (English), 10/27/2010 03:51:36, 203776 bytes
    Driver: C:\Windows\system32\atieclxx.exe, 6.14.0011.1077 (English), 10/27/2010 03:52:12, 478208 bytes
    Driver: C:\Windows\system32\atipdl64.dll, 6.14.0010.2563 (English), 10/27/2010 03:50:14, 423424 bytes
    Driver: C:\Windows\system32\atiedu64.dll, 6.14.0010.2514 (English), 10/27/2010 03:49:48, 59392 bytes
    Driver: C:\Windows\system32\ATIDEMGX.dll, 2.00.3951.39368 (German), 10/27/2010 03:52:18, 450560 bytes
    Driver: C:\Windows\system32\atio6axx.dll, 6.14.0010.10317 (English), 10/27/2010 04:25:36, 21422592 bytes
    Driver: C:\Windows\system32\aticaldd64.dll, 6.14.0010.0880 (English), 10/27/2010 03:35:06, 6815744 bytes
    Driver: C:\Windows\system32\aticalrt64.dll, 6.14.0010.0880 (English), 10/27/2010 03:35:28, 51200 bytes
    Driver: C:\Windows\system32\aticalcl64.dll, 6.14.0010.0880 (English), 10/27/2010 03:35:18, 44544 bytes
    Driver: C:\Windows\system32\atipblag.dat, 9/17/2010 19:17:00, 2888 bytes
    Driver: C:\Windows\system32\atiu9p64.dll, 8.14.0001.6160 (English), 10/27/2010 03:13:28, 37888 bytes
    Driver: C:\Windows\system32\atiuxp64.dll, 8.14.0001.6160 (English), 10/27/2010 03:13:42, 39936 bytes
    Driver: C:\Windows\system32\atig6pxx.dll, 8.14.0001.6160 (English), 10/27/2010 03:14:42, 14848 bytes
    Driver: C:\Windows\system32\atig6txx.dll, 8.14.0001.6160 (English), 10/27/2010 03:14:36, 31744 bytes
    Driver: C:\Windows\system32\atibtmon.exe, 2.00.0000.0000 (English), 5/11/2009 21:35:30, 118784 bytes
    Driver: C:\Windows\system32\atidxx64.dll, 8.17.0010.0318 (English), 10/27/2010 03:38:02, 4744704 bytes
    Driver: C:\Windows\SysWOW64\atiumdag.dll, 8.14.0010.0791 (English), 10/27/2010 03:28:20, 4094464 bytes
    Driver: C:\Windows\SysWOW64\atiumdva.dll, 8.14.0010.0283 (English), 10/27/2010 02:50:08, 3460096 bytes
    Driver: C:\Windows\SysWOW64\amdpcom32.dll, 8.14.0010.0023 (English), 10/27/2010 02:37:12, 52736 bytes
    Driver: C:\Windows\SysWOW64\atimpc32.dll, 8.14.0010.0023 (English), 10/27/2010 02:37:12, 52736 bytes
    Driver: C:\Windows\SysWOW64\atiadlxy.dll, 6.14.0010.1054 (English), 10/27/2010 03:14:50, 249856 bytes
    Driver: C:\Windows\SysWOW64\atiumdva.cap, 10/27/2010 02:49:46, 653056 bytes
    Driver: C:\Windows\SysWOW64\atipdlxx.dll, 6.14.0010.2563 (English), 10/27/2010 03:50:08, 356352 bytes
    Driver: C:\Windows\SysWOW64\Oemdspif.dll, 6.15.0006.0006 (English), 10/27/2010 03:49:56, 278528 bytes
    Driver: C:\Windows\SysWOW64\ati2edxx.dll, 6.14.0010.2514 (English), 10/27/2010 03:49:44, 43520 bytes
    Driver: C:\Windows\SysWOW64\atioglxx.dll, 6.14.0010.10317 (English), 10/27/2010 04:08:16, 16281600 bytes
    Driver: C:\Windows\SysWOW64\atidxx32.dll, 8.17.0010.0318 (English), 10/27/2010 03:46:56, 4020736 bytes
    Driver: C:\Windows\SysWOW64\aticaldd.dll, 6.14.0010.0880 (English), 10/27/2010 03:33:50, 5441536 bytes
    Driver: C:\Windows\SysWOW64\aticalrt.dll, 6.14.0010.0880 (English), 10/27/2010 03:35:26, 46080 bytes
    Driver: C:\Windows\SysWOW64\aticalcl.dll, 6.14.0010.0880 (English), 10/27/2010 03:35:16, 44032 bytes
    Driver: C:\Windows\SysWOW64\atipblag.dat, 9/17/2010 19:17:00, 2888 bytes
    Driver: C:\Windows\SysWOW64\atiu9pag.dll, 8.14.0001.6160 (English), 10/27/2010 03:13:22, 28672 bytes
    Driver: C:\Windows\SysWOW64\atiuxpag.dll, 8.14.0001.6160 (English), 10/27/2010 03:13:34, 30720 bytes
    Driver: C:\Windows\SysWOW64\atigktxx.dll, 8.14.0001.6160 (English), 10/27/2010 03:14:30, 27136 bytes
    Driver: C:\Windows\SysWOW64\atiglpxx.dll, 8.14.0001.6160 (English), 10/27/2010 03:14:40, 12800 bytes
    Driver: C:\Windows\atiogl.xml, 8/12/2010 16:12:46, 22190 bytes
    Driver: C:\Windows\system32\ATIO
  • edited December 2010
    was this ver 2.0????
  • VainamoinenVainamoinen Moderator
    edited December 2010
    I'm rather sure nothing video-/WMP-related was on/running when I started the fatal round, but I could be wrong (Win 7 doesn't always show that very clearly).

    I can be sure, however, that I exited Poker Night through the menu each and every time, so that's not it...
  • edited December 2010
    win 7 64 bit? onboard video? widescreen monitor?
    hate to sound like a broken record in asking

    seems the testers on this rushed .. of course im not sure anyone runs onboard at telltale :P
    but it should BE tested..

    and widescreen I know they have soooo... gulp?

    EDIT:
    did you say you ran VLC AND a game? you are watching a movie trying to play a game?

    it works with flash online stuff.. and some popcap games but this.. naaah
    why have vlc open (vlc rocks btw cheers to you)
  • DjNDBDjNDB Moderator
    edited December 2010
    Was the stat loss caused by the game crashing for everyone, or were there cases the stats were just gone the next start, without any indication the game crashed before?

    You can check that out for past crashes by looking into windows event viewer. You can also copy the error logs from there and paste them here.
    It would be interesting to see if it was FMOD related for most of you.



    I think though that in any case the game should use a more reliable way to store the stats. They are a quite essential part of the gamers experience in a game like this.
    It might be as simple as catching some exceptions to make sure the prefs.prop always gets closed properly.
    But if the writing is interrupted by an unrecoverable error that would not help.
    The game writes the prefs.prop very often. At least at startup, after every hand, and when it's closed. That's when a crash would be most critical.

    It would be better to have that stats stored in some form of Transaction with at least some of the ACID properties. Then only the last Hand would be either stored, or lost, which is much more desirable in a game like this.
    SQLite is one product which explicitly offers that for file based data storage. It can also be used commercially in every way for free according to the License.



    Looking for errors in the event viewer
    After a crash occuredm, take a look at the "application" part of windows "event viewer". Set a filter for "application errors" there to make it easier to find earlier crashes.
    If you find anything related to the game you can copy the details by right clicking on the entry, and selecting the corresponding option. Than you can paste it into a Forum post.
  • VainamoinenVainamoinen Moderator
    edited December 2010
    My Poker Night never crashed, so I'm positive that I always left the game via menu. I do not have the VLC video player installed, I use WMP exclusively.
  • edited December 2010
    DjNDB wrote: »
    I think though that in any case the game should use a more reliable way to store the stats. They are a quite essential part of the gamers experience in a game like this.
    It might be as simple as catching some exceptions to make sure the prefs.prop always gets closed properly.
    But if the writing is interrupted by an unrecoverable error that would not help.
    The game writes the prefs.prop very often. At least at startup, after every hand, and when it's closed. That's when a crash would be most critical.
    Yeah, that's what I was thinking too. It's quite a bad oversight that the game can crash with an empty file at any point during execution.

    I assumed that it was the pnati_save file that was corrupted, but it turns out you're right about this prefs file.

    If I crash the game on startup and just replace the prefs.prop file with a backup, then all the stats return. So it's definitely a problem with the prefs file.

    Incidentally, I get an appcrash in the same module as you do, the fmodex.dll
    Log Name:      Application
    Source:        Application Error
    Date:          07/12/2010 21:22:04
    Event ID:      1000
    Task Category: (100)
    Level:         Error
    Keywords:      Classic
    User:          N/A
    Computer:      X
    Description:
    Faulting application name: CelebrityPoker.exe, version: 2010.12.3.50720, time stamp: 0x4cf97084
    Faulting module name: fmodex.dll, version: 0.4.30.3, time stamp: 0x4be351f9
    Exception code: 0xc0000005
    Fault offset: 0x00072658
    Faulting process id: 0x65c
    Faulting application start time: 0x01cb964c63698620
    Faulting application path: d:\games\steam\steamapps\common\poker night at the inventory\CelebrityPoker.exe
    Faulting module path: d:\games\steam\steamapps\common\poker night at the inventory\fmodex.dll
    Report Id: a737cc90-023f-11e0-b126-001a920e7dfa
    Event Xml:
    <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="2010-12-07T20:22:04.000000000Z" />
        <EventRecordID>713384</EventRecordID>
        <Channel>Application</Channel>
        <Computer>X</Computer>
        <Security />
      </System>
      <EventData>
        <Data>CelebrityPoker.exe</Data>
        <Data>2010.12.3.50720</Data>
        <Data>4cf97084</Data>
        <Data>fmodex.dll</Data>
        <Data>0.4.30.3</Data>
        <Data>4be351f9</Data>
        <Data>c0000005</Data>
        <Data>00072658</Data>
        <Data>65c</Data>
        <Data>01cb964c63698620</Data>
        <Data>d:\games\steam\steamapps\common\poker night at the inventory\CelebrityPoker.exe</Data>
        <Data>d:\games\steam\steamapps\common\poker night at the inventory\fmodex.dll</Data>
        <Data>a737cc90-023f-11e0-b126-001a920e7dfa</Data>
      </EventData>
    </Event>
    

    But judging by other responses in this thread, I don't think it matters how you crash the app on startup, but someone wasn't paying attention in transaction class ;)

    EDIT The behavior is the same with the old Poker exe and v2 as well.
    I also found out that if I use an even older prefs.prop file, the stats are reverted back to that previous point. Which makes me wonder what the heck the pnati_save file is for if all the stats are in the pref file? o.O
  • edited December 2010
    odd.. if im not mistaken strongbads module did the same thing

    fmodex.dll error...
    how was that fixed? hmm
    where is scoottttt!
  • edited December 2010
    All graphics settings are back to default, but it still remembers that I'm in the middle of a tournament and I can click the 'continue tournament' button in the menu.
    It continues the tournament where I left off, however, all my stats are reset and all my unlocks are gone.
    I got this after installing the patch. However opted for a new tournament...

    Same result though, everything was gone...
  • edited December 2010
    I got this after installing the patch. However opted for a new tournament...

    Same result though, everything was gone...

    I have had the same problem. Here is my dxdiag:

    [code]
    System Information
    Time of this report: 12/9/2010, 00:15:32
    Machine name: MY-PC
    Operating System: Windows 7 Professional 32-bit (6.1, Build 7600) (7600.win7_gdr.100618-1621)
    Language: English (Regional Setting: English)
    System Manufacturer: Dell Inc.
    System Model: Vostro 1520
    BIOS: Ver 1.00PARTTBLd
    Processor: Intel(R) Core(TM)2 Duo CPU T9550 @ 2.66GHz (2 CPUs), ~2.7GHz
    Memory: 4096MB RAM
    Available OS Memory: 3066MB RAM
    Page File: 1964MB used, 4166MB available
    Windows Dir: C:\Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7600.16385 32bit Unicode

    DxDiag Notes
    Display Tab 1: No problems found.
    Sound Tab 1: No problems found.
    Input Tab: No problems found.

    DirectX Debug Levels
    Direct3D: 0/4 (retail)
    DirectDraw: 0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay: 0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow: 0/6 (retail)

    Display Devices
    Card name: NVIDIA GeForce 9300M GS
    Manufacturer: NVIDIA
    Chip type: GeForce 9300M GS
    DAC type: Integrated RAMDAC
    Device Key: Enum\PCI\VEN_10DE&DEV_06E9&SUBSYS_02BC1028&REV_A1
    Display Memory: 1518 MB
    Dedicated Memory: 241 MB
    Shared Memory: 1277 MB
    Current Mode: 1440 x 900 (32 bit) (60Hz)
    Monitor Name: Generic PnP Monitor
    Monitor Model: unknown
    Monitor Id: AUO2177
    Native Mode: 1440 x 900(p) (60.112Hz)
    Output Type: Internal
    Driver Name: nvd3dum.dll,nvwgf2um.dll,nvwgf2um.dll
    Driver File Version: 8.17.0012.5896 (English)
    Driver Version: 8.17.12.5896
    DDI Version: 10
    Driver Model: WDDM 1.1
    Driver Attributes: Final Retail
    Driver Date/Size: 7/10/2010 04:37:00, 9818728 bytes
    WHQL Logo'd: Yes
    WHQL Date Stamp:
    Device Identifier: {D7B71E3E-45A9-11CF-9064-B0221FC2C535}
    Vendor ID: 0x10DE
    Device ID: 0x06E9
    SubSys ID: 0x02BC1028
    Revision ID: 0x00A1
    Driver Strong Name: oem16.inf:NVIDIA_SetA_Devices.NTx86.6.1:Section010:8.17.12.5896:pci\ven_10de&dev_06e9
    Rank Of Driver: 00E62001
    Video Accel: ModeMPEG2_A ModeMPEG2_C ModeVC1_C ModeWMV9_C
    Deinterlace Caps: {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {6CB69578-7617-4637-91E5-1C02DB810285}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {F9F19DA5-3B09-4B2F-9D89-C64753E3EAAB}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    D3D9 Overlay: Supported
    DXVA-HD: Supported
    DDraw Status: Enabled
    D3D Status: Enabled
    AGP Status: Enabled

    Sound Devices
    Description: Speakers (High Definition Audio Device)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
    Hardware ID: HDAUDIO\FUNC_01&VEN_111D&DEV_76D5&SUBSYS_102802BC&REV_1003
    Manufacturer ID: 1
    Product ID: 65535
    Type: WDM
    Driver Name: HdAudio.sys
    Driver Version: 6.01.7600.16385 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: Yes
    Date and Size: 7/13/2009 23:51:47, 304128 bytes
    Other Files:
    Driver Provider: Microsoft
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Sound Capture Devices
    Description: Microphone (High Definition Audio Device)
    Default Sound Capture: Yes
    Default Voice Capture: Yes
    Driver Name: HdAudio.sys
    Driver Version: 6.01.7600.16385 (English)
    Driver Attributes: Final Retail
    Date and Size: 7/13/2009 23:51:47, 304128 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    DirectInput Devices
    Device Name: Mouse
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: Keyboard
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: USB Receiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC517
    FF Driver: n/a

    Device Name: USB Receiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC517
    FF Driver: n/a

    Device Name: USB Receiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC517
    FF Driver: n/a

    Device Name: USB Receiver
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC517
    FF Driver: n/a

    Poll w/ Interrupt: No

    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x2935
    | Matching Device ID: usb\root_hub
    | Service: usbhub
    | Driver: usbhub.sys, 7/13/2009 23:52:09, 258560 bytes
    | Driver: usbd.sys, 7/13/2009 23:51:05, 5888 bytes

    Gameport Devices

    PS/2 Devices
    + Standard PS/2 Keyboard
    | Matching Device ID: *pnp0303
    | Service: i8042prt
    | Driver: i8042prt.sys, 7/13/2009 23:11:24, 80896 bytes
    | Driver: kbdclass.sys, 7/14/2009 01:20:36, 42576 bytes
    |
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC517
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    | Driver: kbdhid.sys, 7/13/2009 23:45:09, 28160 bytes
    | Driver: kbdclass.sys, 7/14/2009 01:20:36, 42576 bytes
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    | Driver: i8042prt.sys, 7/13/2009 23:11:24, 80896 bytes
    | Driver: kbdclass.sys, 7/14/2009 01:20:36, 42576 bytes
    |
    + Synaptics PS/2 Port TouchPad
    | Matching Device ID: *syn070b
    | Upper Filters: SynTP
    | Service: i8042prt
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x046D, 0xC517
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    | Driver: mouhid.sys, 7/13/2009 23:45:08, 26112 bytes
    | Driver: mouclass.sys, 7/14/2009 01:20:44, 41552 bytes
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD
    | Driver: termdd.sys, 7/14/2009 01:19:10, 51776 bytes
    | Driver: sermouse.sys, 7/13/2009 23:45:08, 19968 bytes
    | Driver: mouclass.sys, 7/14/2009 01:20:44, 41552 bytes

    Disk & DVD/CD-ROM Drives
    Drive: C:
    Free Space: 1.7 GB
    Total Space: 70.0 GB
    File System: NTFS
    Model: ST9320423ASG ATA Device

    Drive: D:
    Free Space: 19.4 GB
    Total Space: 185.2 GB
    File System: NTFS
    Model: ST9320423ASG ATA Device

    Drive: G:
    Free Space: 30.9 GB
    Total Space: 446.3 GB
    File System: FAT32
    Model: WD 5000AAK External USB Device

    Drive: E:
    Model: HL-DT-ST DVD+-RW GT10N ATA Device
    Driver: c:\windows\system32\drivers\cdrom.sys, 6.01.7600.16385 (English), 7/13/2009 23:11:26, 108544 bytes

    System Devices
    Name: Intel(R) ICH9 Family PCI Express Root Port 6 - 294A
    Device ID: PCI\VEN_8086&DEV_294A&SUBSYS_00000000&REV_03\3&11583659&0&E5
    Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (English), 7/14/2009 01:20:45, 153680 bytes

    Name: Intel(R) ICH9 Family USB2 Enhanced Host Controller - 293A
    Device ID: PCI\VEN_8086&DEV_293A&SUBSYS_02BC1028&REV_03\3&11583659&0&EF
    Driver: C:\Windows\system32\drivers\usbehci.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:14, 41472 bytes
    Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:15, 284160 bytes
    Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (English), 7/13/2009 23:52:09, 258560 bytes

    Name: Standard AHCI 1.0 Serial ATA Controller
    Device ID: PCI\VEN_8086&DEV_2929&SUBSYS_02BC1028&REV_03\3&11583659&0&FA
    Driver: C:\Windows\system32\DRIVERS\msahci.sys, 6.01.7600.16385 (English), 7/14/2009 01:20:44, 27712 bytes
    Driver: C:\Windows\system32\DRIVERS\pciidex.sys, 6.01.7600.16385 (English), 7/14/2009 01:19:03, 42560 bytes
    Driver: C:\Windows\system32\DRIVERS\atapi.sys, 6.01.7600.16385 (English), 7/14/2009 01:26:15, 21584 bytes
    Driver: C:\Windows\system32\DRIVERS\ataport.sys, 6.01.7600.16385 (English), 7/14/2009 01:26:15, 133200 bytes

    Name: Intel(R) ICH9 Family PCI Express Root Port 5 - 2948
    Device ID: PCI\VEN_8086&DEV_2948&SUBSYS_02BC1028&REV_03\3&11583659&0&E4
    Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (English), 7/14/2009 01:20:45, 153680 bytes

    Name: Intel(R) ICH9 Family USB Universal Host Controller - 2939
    Device ID: PCI\VEN_8086&DEV_2939&SUBSYS_02BC1028&REV_03\3&11583659&0&D2
    Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:10, 24064 bytes
    Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:15, 284160 bytes
    Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (English), 7/13/2009 23:52:09, 258560 bytes

    Name: Intel(R) ICH9M LPC Interface Controller - 2919
    Device ID: PCI\VEN_8086&DEV_2919&SUBSYS_02BC1028&REV_03\3&11583659&0&F8
    Driver: C:\Windows\system32\DRIVERS\msisadrv.sys, 6.01.7600.16385 (English), 7/14/2009 01:20:43, 13888 bytes

    Name: Intel(R) ICH9 Family PCI Express Root Port 4 - 2946
    Device ID: PCI\VEN_8086&DEV_2946&SUBSYS_02BC1028&REV_03\3&11583659&0&E3
    Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (English), 7/14/2009 01:20:45, 153680 bytes

    Name: Intel(R) ICH9 Family USB Universal Host Controller - 2938
    Device ID: PCI\VEN_8086&DEV_2938&SUBSYS_02BC1028&REV_03\3&11583659&0&D1
    Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:10, 24064 bytes
    Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:15, 284160 bytes
    Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (English), 7/13/2009 23:52:09, 258560 bytes

    Name: Intel(R) 82801 PCI Bridge - 2448
    Device ID: PCI\VEN_8086&DEV_2448&SUBSYS_02BC1028&REV_93\3&11583659&0&F0
    Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (English), 7/14/2009 01:20:45, 153680 bytes

    Name: Intel(R) ICH9 Family PCI Express Root Port 3 - 2944
    Device ID: PCI\VEN_8086&DEV_2944&SUBSYS_00000000&REV_03\3&11583659&0&E2
    Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (English), 7/14/2009 01:20:45, 153680 bytes

    Name: Intel(R) ICH9 Family USB Universal Host Controller - 2937
    Device ID: PCI\VEN_8086&DEV_2937&SUBSYS_02BC1028&REV_03\3&11583659&0&D0
    Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:10, 24064 bytes
    Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:15, 284160 bytes
    Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (English), 7/13/2009 23:52:09, 258560 bytes

    Name: Mass Storage Controller
    Device ID: PCI\VEN_1217&DEV_8130&SUBSYS_02BC1028&REV_01\4&12BF0147&0&02E4
    Driver: n/a

    Name: Intel(R) ICH9 Family PCI Express Root Port 2 - 2942
    Device ID: PCI\VEN_8086&DEV_2942&SUBSYS_02BC1028&REV_03\3&11583659&0&E1
    Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (English), 7/14/2009 01:20:45, 153680 bytes

    Name: Intel(R) ICH9 Family USB Universal Host Controller - 2936
    Device ID: PCI\VEN_8086&DEV_2936&SUBSYS_02BC1028&REV_03\3&11583659&0&EA
    Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:10, 24064 bytes
    Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:15, 284160 bytes
    Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (English), 7/13/2009 23:52:09, 258560 bytes

    Name: SDA Standard Compliant SD Host Controller
    Device ID: PCI\VEN_1217&DEV_8120&SUBSYS_02BC1028&REV_01\4&12BF0147&0&01E4
    Driver: C:\Windows\system32\DRIVERS\sdbus.sys, 6.01.7600.16438 (English), 10/10/2009 02:31:24, 84992 bytes

    Name: Intel(R) WiFi Link 5300 AGN
    Device ID: PCI\VEN_8086&DEV_4235&SUBSYS_11218086&REV_00\4&492937F&0&00E2
    Driver: n/a

    Name: Intel(R) ICH9 Family PCI Express Root Port 1 - 2940
    Device ID: PCI\VEN_8086&DEV_2940&SUBSYS_02BC1028&REV_03\3&11583659&0&E0
    Driver: C:\Windows\system32\DRIVERS\pci.sys, 6.01.7600.16385 (English), 7/14/2009 01:20:45, 153680 bytes

    Name: Intel(R) ICH9 Family USB Universal Host Controller - 2935
    Device ID: PCI\VEN_8086&DEV_2935&SUBSYS_02BC1028&REV_03\3&11583659&0&E9
    Driver: C:\Windows\system32\drivers\usbuhci.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:10, 24064 bytes
    Driver: C:\Windows\system32\drivers\usbport.sys, 6.01.7600.16385 (English), 7/13/2009 23:51:15, 284160 bytes
    Driver: C:\Windows\system32\drivers\usbhub.sys, 6.01.7600.16385 (English), 7/13/2009 23:52:09, 258560 bytes

    Name: 1394 OHCI Compliant Host Controller
    Device ID: PCI\VEN_1217&DEV_10F7&SUBSYS_02BC1028&REV_01\4&12BF0147&0&00E4
    Driver: C:\Windows\system32\DRIVERS\1394ohci.sys, 6.01.7600.16385 (English), 7/13/2009 23:52:00, 163328 bytes

    Name: Mobile Intel(R) 4 Series Chipset PCI Express Root Port - 2A41
    Device ID: PCI\VEN_8086&DEV_2A41&SUBSYS_02BC1028&REV_07\3&11583659&0&08
    Driver: C:\Windows\syste
  • edited December 2010
    My Achievement list:

    http://steamcommunity.com/id/jimiester/stats/PokerNight

    I won with a straight flush, apparently only 1% of all players have it.
  • edited December 2010
    Just booted up Poker Night and discovered that ALL your: Scores, tables, card decks, and unlocks have been DELETED? This thread is for you!

    If you've lost everything too, post about it here! I lost eight hours worth of play *sob*

    Here's what happened to me (from another thread).

    If you want to be extra helpful: Try to be as specific as you can, in order to help TTG understand what happened.

    Hopefully they'll find a way to fix this problem :(
  • edited December 2010
    Same thing happened to me twice, though I didn't play it on Steam and never have.
  • edited December 2010
    Happened to me twice (before and after patch) too. I'm not playing since then.
  • edited December 2010
    Same here. Never played it on Steam (though activated it there).

    Happened after patching.
  • edited December 2010
    Been playing on Steam, which still has all of my achievements. But I lost 26 hours' worth of tables and decks, and the game's running all choppy...

    Is this a side-effect of the patch?
  • edited December 2010
    Can anyone on Telltale tell us how to properly backup our stuff? I keep hearing these stories, I have a dozen tournaments won, I'm practically at the same spot I was when I lost all my stuff, it wouldn't be amusing for it to happen again
  • edited December 2010
    I played the TTG version a bit and unlocked a couple tables and won Strong Bad's glasses, then I learned you have to play the Steam version to get the TF2 unlocks, and when I played the Steam version for the first time, my stuff was briefly displayed and then disappeared, setting me back to the beginning. I haven't tried loading up the TTG version since then, and so far I've had no further problems keeping my stuff.
  • edited December 2010
    Great, topics were moved to game support subforum. Does Telltale even look inside it?
  • DjNDBDjNDB Moderator
    edited December 2010
    crfh wrote: »
    Can anyone on Telltale tell us how to properly backup our stuff? I keep hearing these stories, I have a dozen tournaments won, I'm practically at the same spot I was when I lost all my stuff, it wouldn't be amusing for it to happen again

    All you need to do is to backup your save file and prefs.prop.

    I posted a python script earlier, which does periodical backups.

    For more convenient use i attached a zip file to this post. All you need to get it running is a python interpreter. Afterwards unzip the file, use a text editor (or pythons IDLE by right clicking) to adapt the base_dir and backup_interval.
    Then you should be able to start the PNATI_Backup.py by double clicking.

    If the game should crash on you, just unzip one of the backups. You might also want to delete older Backups every now and then for space reasons. I don't delete them automatically, because in the worst case you would end up with only backups of the time after the crash if you would wait to long.

    That's a relatively convenient workaround until there is an official solution.
  • edited December 2010
    I've been there, man. I'd managed to win all the TF2 items & everything up to the Homestar Runner deck before BOOM, I'd lost everything. I couldn't even play the game for a couple days, not because it wouldn't respond, but because it was too depressing.

    I got back on the horse that threw me eventually, though, & now I've unlocked everything up to the Fruit Friend table & regained the TF2 items. Still, if this is still happening to people, Telltale needs to find a solution & fast.
  • edited December 2010
    Yeah, until there's a fix for this, I'm not playing this anymore. I presume TTG are aware of the issue. I also assume they know exactly what causes it, given that they've not asked for any further details from us.
  • VainamoinenVainamoinen Moderator
    edited December 2010
    Yeah, until there's a fix for this, I'm not playing this anymore. I presume TTG are aware of the issue. I also assume they know exactly what causes it, given that they've not asked for any further details from us.

    They did ask, as you can see in this thread, but the answers were probably not enough to find "the" cause. I hope there'll be a fix for it somewhen.
  • edited December 2010
    One person asked for some DxDiags... Here's my full explanation of what I did before I lost everything (for posterity).

    I JUST LOST ALL MY PROGRESS :(

    I'm a wee bit miffed that I've just lost EIGHT HOURS of progress. *sob* EVERYTHING (score, unlocks, character items) have been reset.

    Here's exactly what I did:

    I originally installed TTG's version (not Steam version) because Jake assured us that it would have the Steam achievements. I played it briefly, realised it didn't have them, and downloaded the Steam version.

    The Steam version continued my previous game no problem... I kept my score and unlocks, and got achievements. Woo!

    I then continued to play the Steam version for eight hours in total (not in one sitting, lol). I got the patch when it came, etc. All good.

    Then today, I accidentally loaded the TTG version from the icon on my desktop (I forgot to uninstall it). The TTG Loader appeared, and I immediately realised what I had done and shut it down. (I did not click "Launch Game"!)

    I then went into Steam and booted the game through that. It remembered my resolution settings (playing in a window) and I clicked on "Play Game". It asked if I wanted to continue my previous tournament... I said "yes". I noticed the cards and table had reverted back to the original two... I pressed ESC to look at my stats and they'd all been erased. As had my character items. I clicked the UNLOCKS tab and for a few seconds it showed all the tables I had previously unlocked, and then removed them and gave me just the two you start with.

    I looked into my C:\Users\Johnny\Documents\Telltale Games\Poker Night at the Inventory folder and found the two save files.

    My pnati_save.save had NOT been modified since my last play (ie it had been modified several days ago).
    My prefs.prop HAD been modified when I had booted the game (ie. 20 mins ago).

    Help!
  • edited December 2010
    Just another one in the same boat... Happened after I updated to the new version, despite asking it to keep the saves.

    Update: just happened again. Probably relevant is that I exited the game before finishing a round the previous time. (Graphics settings etc. were also all reset at the same time.)
  • edited December 2010
    This is happening to me too. It's actually happened pretty much every time I try to play. The first time I run the game it will immediately pop up a "CelebrityPoker.exe has stopped working" error and close. Then I run it again and all my settings have been reset to default and my stats are all wiped, including unlocks. I can play normally from there, and closing and reopening the game will still work, but if I turn my computer off and on and run the game it will do the same thing, immediately crashing and wiping all my settings/stats in the process.

    This has only been happening since the patch, I had no problems at all before then. I'm also running the Steam version, if that makes any difference.

    dxdiag:
    [code]
    System Information
    Time of this report: 12/19/2010, 22:03:15
    Machine name: KONATA
    Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7600) (7600.win7_gdr.100618-1621)
    Language: English (Regional Setting: English)
    System Manufacturer: System manufacturer
    System Model: System Product Name
    BIOS: BIOS Date: 02/24/10 14:05:48 Ver: 08.00.15
    Processor: Intel(R) Core(TM) i7 CPU 930 @ 2.80GHz (8 CPUs), ~2.8GHz
    Memory: 6144MB RAM
    Available OS Memory: 6136MB RAM
    Page File: 2624MB used, 9644MB available
    Windows Dir: C:\Windows
    DirectX Version: DirectX 11
    DX Setup Parameters: Not found
    User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
    DWM DPI Scaling: Disabled
    DxDiag Version: 6.01.7600.16385 32bit Unicode

    DxDiag Notes
    Display Tab 1: No problems found.
    Display Tab 2: No problems found.
    Sound Tab 1: No problems found.
    Sound Tab 2: No problems found.
    Sound Tab 3: No problems found.
    Sound Tab 4: No problems found.
    Sound Tab 5: No problems found.
    Input Tab: No problems found.

    DirectX Debug Levels
    Direct3D: 0/4 (retail)
    DirectDraw: 0/4 (retail)
    DirectInput: 0/5 (retail)
    DirectMusic: 0/5 (retail)
    DirectPlay: 0/9 (retail)
    DirectSound: 0/5 (retail)
    DirectShow: 0/6 (retail)

    Display Devices
    Card name: ATI Radeon HD 5800 Series
    Manufacturer: ATI Technologies Inc.
    Chip type: ATI display adapter (0x6898)
    DAC type: Internal DAC(400MHz)
    Device Key: Enum\PCI\VEN_1002&DEV_6898&SUBSYS_0B001002&REV_00
    Display Memory: 2752 MB
    Dedicated Memory: 4045 MB
    Shared Memory: 2803 MB
    Current Mode: 1920 x 1080 (32 bit) (60Hz)
    Monitor Name: SyncMaster 2333SW,SyncMaster Magic CX2333SW(Digital)
    Monitor Model: SyncMaster
    Monitor Id: SAM04DE
    Native Mode: 1920 x 1080(p) (59.934Hz)
    Output Type: DVI
    Driver Name: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Driver File Version: 8.17.0010.1041 (English)
    Driver Version: 8.762.0.0
    DDI Version: 10.1
    Driver Model: WDDM 1.1
    Driver Attributes: Final Retail
    Driver Date/Size: 8/3/2010 20:54:00, 598528 bytes
    WHQL Logo'd: n/a
    WHQL Date Stamp: n/a
    Device Identifier: {D7B71EE2-2BD8-11CF-A377-0A2BBEC2C535}
    Vendor ID: 0x1002
    Device ID: 0x6898
    SubSys ID: 0x0B001002
    Revision ID: 0x0000
    Driver Strong Name: oem17.inf:ATI.Mfg.NTamd64.6.1:ati2mtag_Evergreen:8.762.0.0:pci\ven_1002&dev_6898
    Rank Of Driver: 00E62001
    Video Accel: ModeMPEG2_A ModeMPEG2_C
    Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    D3D9 Overlay: Not Supported
    DXVA-HD: Not Supported
    DDraw Status: Enabled
    D3D Status: Enabled
    AGP Status: Enabled

    Card name: ATI Radeon HD 5800 Series
    Manufacturer: ATI Technologies Inc.
    Chip type: ATI display adapter (0x6898)
    DAC type: Internal DAC(400MHz)
    Device Key: Enum\PCI\VEN_1002&DEV_6898&SUBSYS_0B001002&REV_00
    Display Memory: 2752 MB
    Dedicated Memory: 4045 MB
    Shared Memory: 2803 MB
    Current Mode: 1600 x 900 (32 bit) (60Hz)
    Monitor Name: SyncMaster 2033SB,SyncMaster Magic CX2033SB(Digital)
    Monitor Model: SyncMaster
    Monitor Id: SAM0498
    Native Mode: 1600 x 900(p) (59.978Hz)
    Output Type: DVI
    Driver Name: aticfx64.dll,aticfx64.dll,aticfx64.dll,aticfx32,aticfx32,aticfx32,atiumd64.dll,atidxx64.dll,atidxx64.dll,atiumdag,atidxx32,atidxx32,atiumdva,atiumd6a.cap,atitmm64.dll
    Driver File Version: 8.17.0010.1041 (English)
    Driver Version: 8.762.0.0
    DDI Version: 10.1
    Driver Model: WDDM 1.1
    Driver Attributes: Final Retail
    Driver Date/Size: 8/3/2010 20:54:00, 598528 bytes
    WHQL Logo'd: n/a
    WHQL Date Stamp: n/a
    Device Identifier: {D7B71EE2-2BD8-11CF-A377-0A2BBEC2C535}
    Vendor ID: 0x1002
    Device ID: 0x6898
    SubSys ID: 0x0B001002
    Revision ID: 0x0000
    Driver Strong Name: oem17.inf:ATI.Mfg.NTamd64.6.1:ati2mtag_Evergreen:8.762.0.0:pci\ven_1002&dev_6898
    Rank Of Driver: 00E62001
    Video Accel: ModeMPEG2_A ModeMPEG2_C
    Deinterlace Caps: {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YUY2,YUY2) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(UYVY,UYVY) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(YV12,0x32315659) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {3C5323C1-6FB7-44F5-9081-056BF2EE449D}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {552C0DAD-CCBC-420B-83C8-74943CF9F1A6}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,2) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {6E8329FF-B642-418B-BCF0-BCB6591E255F}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,1) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_PixelAdaptive
    {335AA36E-7884-43A4-9C91-7F87FAF3E37E}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY DeinterlaceTech_BOBVerticalStretch
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(NV12,0x3231564e) Frames(Prev/Fwd/Back)=(0,0,0) Caps=VideoProcess_YUV2RGB VideoProcess_StretchX VideoProcess_StretchY
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC1,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC2,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC3,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(IMC4,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S340,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    {5A54A0C9-C7EC-4BD9-8EDE-F3C75DC4393B}: Format(In/Out)=(S342,UNKNOWN) Frames(Prev/Fwd/Back)=(0,0,0) Caps=
    D3D9 Overlay: Not Supported
    DXVA-HD: Not Supported
    DDraw Status: Enabled
    D3D Status: Enabled
    AGP Status: Enabled

    Sound Devices
    Description: Speakers (3- SB Audigy)
    Default Sound Playback: Yes
    Default Voice Playback: Yes
    Hardware ID: PCI\VEN_1102&DEV_0007&SUBSYS_100A1102&REV_00
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: P17.sys
    Driver Version: 5.12.0001.2020 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: n/a
    Date and Size: 10/16/2009 06:44:56, 1309696 bytes
    Other Files:
    Driver Provider: CREATIVE
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Description: Digital Audio (S/PDIF) (2- High Definition Audio Device)
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0888&SUBSYS_104383C0&REV_1001
    Manufacturer ID: 1
    Product ID: 65535
    Type: WDM
    Driver Name: HdAudio.sys
    Driver Version: 6.01.7600.16385 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: n/a
    Date and Size: 7/13/2009 19:07:00, 350208 bytes
    Other Files:
    Driver Provider: Microsoft
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Description: Digital Audio Interface (3- SB Audigy)
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: PCI\VEN_1102&DEV_0007&SUBSYS_100A1102&REV_00
    Manufacturer ID: 1
    Product ID: 100
    Type: WDM
    Driver Name: P17.sys
    Driver Version: 5.12.0001.2020 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: n/a
    Date and Size: 10/16/2009 06:44:56, 1309696 bytes
    Other Files:
    Driver Provider: CREATIVE
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Description: Digital Audio (S/PDIF) (2- High Definition Audio Device)
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: HDAUDIO\FUNC_01&VEN_10EC&DEV_0888&SUBSYS_104383C0&REV_1001
    Manufacturer ID: 1
    Product ID: 65535
    Type: WDM
    Driver Name: HdAudio.sys
    Driver Version: 6.01.7600.16385 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: n/a
    Date and Size: 7/13/2009 19:07:00, 350208 bytes
    Other Files:
    Driver Provider: Microsoft
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Description: Headset (5- Sound Blaster World of Warcraft Wireless Headset)
    Default Sound Playback: No
    Default Voice Playback: No
    Hardware ID: USB\VID_041E&PID_30D9&REV_0100&MI_00
    Manufacturer ID: 65535
    Product ID: 65535
    Type: WDM
    Driver Name: USBAUDIO.sys
    Driver Version: 6.01.7600.16385 (English)
    Driver Attributes: Final Retail
    WHQL Logo'd: n/a
    Date and Size: 7/13/2009 19:06:32, 109568 bytes
    Other Files:
    Driver Provider: CREATIVE
    HW Accel Level: Basic
    Cap Flags: 0xF1F
    Min/Max Sample Rate: 100, 200000
    Static/Strm HW Mix Bufs: 1, 0
    Static/Strm HW 3D Bufs: 0, 0
    HW Memory: 0
    Voice Management: No
    EAX(tm) 2.0 Listen/Src: No, No
    I3DL2(tm) Listen/Src: No, No
    Sensaura(tm) ZoomFX(tm): No

    Sound Capture Devices
    Description: Headset (5- Sound Blaster World of Warcraft Wireless Headset)
    Default Sound Capture: Yes
    Default Voice Capture: Yes
    Driver Name: USBAUDIO.sys
    Driver Version: 6.01.7600.16385 (English)
    Driver Attributes: Final Retail
    Date and Size: 7/13/2009 19:06:32, 109568 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    Description: S/PDIF-In (3- SB Audigy)
    Default Sound Capture: No
    Default Voice Capture: No
    Driver Name: P17.sys
    Driver Version: 5.12.0001.2020 (English)
    Driver Attributes: Final Retail
    Date and Size: 10/16/2009 06:44:56, 1309696 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    Description: Line-In (3- SB Audigy)
    Default Sound Capture: No
    Default Voice Capture: No
    Driver Name: P17.sys
    Driver Version: 5.12.0001.2020 (English)
    Driver Attributes: Final Retail
    Date and Size: 10/16/2009 06:44:56, 1309696 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    Description: Auxiliary (3- SB Audigy)
    Default Sound Capture: No
    Default Voice Capture: No
    Driver Name: P17.sys
    Driver Version: 5.12.0001.2020 (English)
    Driver Attributes: Final Retail
    Date and Size: 10/16/2009 06:44:56, 1309696 bytes
    Cap Flags: 0x1
    Format Flags: 0xFFFFF

    DirectInput Devices
    Device Name: Mouse
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: Keyboard
    Attached: 1
    Controller ID: n/a
    Vendor/Product ID: n/a
    FF Driver: n/a

    Device Name: SB WoW Wireless Headset
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x041E, 0x30D9
    FF Driver: n/a

    Device Name: Gaming Keyboard
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC221
    FF Driver: n/a

    Device Name: Gaming Keyboard
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC221
    FF Driver: n/a

    Device Name: G15 Keyboard
    Attached: 1
    Controller ID: 0x0
    Vendor/Product ID: 0x046D, 0xC222
    FF Driver: n/a

    Poll w/ Interrupt: No

    USB Devices
    + USB Root Hub
    | Vendor/Product ID: 0x8086, 0x3A36
    | Matching Device ID: usb\root_hub
    | Service: usbhub

    Gameport Devices

    PS/2 Devices
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC221
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC222
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + HID Keyboard Device
    | Vendor/Product ID: 0x046D, 0xC232
    | Matching Device ID: hid_device_system_keyboard
    | Service: kbdhid
    |
    + Terminal Server Keyboard Driver
    | Matching Device ID: root\rdp_kbd
    | Upper Filters: kbdclass
    | Service: TermDD
    |
    + HID-compliant mouse
    | Vendor/Product ID: 0x046D, 0xC231
    | Matching Device ID: hid_device_system_mouse
    | Service: mouhid
    |
    + Logitech HID-compliant Cordless Trackball
    | Vendor/Product ID: 0x046D, 0xC501
    | Matching Device ID: hid\vid_046d&pid_c501
    | Upper Filters: LMouFilt
    | Lower Filters: LHidFilt
    | Service: mouhid
    |
    + Terminal Server Mouse Driver
    | Matching Device ID: root\rdp_mou
    | Upper Filters: mouclass
    | Service: TermDD

    Disk & DVD/CD-ROM Drives
    Drive: C:
    Free Space: 43.3 GB
    Total Space: 235.0 GB
    File System: NTFS
    Model
  • edited December 2010
    My copy of Poker Night did the same thing to me! My little bit of progress is gone now. I have to begin all over.
  • edited December 2010
    Count me up for this glitch now.
    I unlocked EVERYTHING but the last deck too.:(
  • edited January 2011
    Quick question, where are the save and prefs files for the Steam version? I would like to back it up beforehand and test if it ever happens to me. Well, it hasn't, yet.

    I never even watch stuff from Youtube since the game is fullscreen, so if it's caused by graphical preference fuckups I feel like I'm safe, but you can never know.
This discussion has been closed.